n random numbers python

76

n random numbers python -

>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]

Comments

Submit
0 Comments